home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (C) 1989, 1995 Aladdin Enterprises. All rights reserved.
-
- This file is part of Aladdin Ghostscript.
-
- Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author
- or distributor accepts any responsibility for the consequences of using it,
- or for whether it serves any particular purpose or works at all, unless he
- or she says so in writing. Refer to the Aladdin Ghostscript Free Public
- License (the "License") for full details.
-
- Every copy of Aladdin Ghostscript must include a copy of the License,
- normally in a plain ASCII text file named PUBLIC. The License grants you
- the right to copy, modify and redistribute Aladdin Ghostscript, but only
- under certain conditions described in the License. Among other things, the
- License requires that the copyright notice and this notice be preserved on
- all copies.
- */
-
- /* gstypes.h */
- /* Miscellaneous common types for Ghostscript library */
-
- #ifndef gstypes_INCLUDED
- # define gstypes_INCLUDED
-
- /*
- * Define a type used internally for unique IDs of various kinds
- * (primarily, but not exclusively, character and halftone bitmaps).
- * These IDs bear no relation to any other ID space; we generate them all
- * ourselves.
- */
- typedef ulong gs_id;
- #define gs_no_id 0L
-
- /*
- * Define a sensible representation of a string, as opposed to
- * the C char * type (which can't store arbitrary data, represent
- * substrings, or perform concatenation without destroying aliases).
- */
- typedef struct gs_string_s {
- byte *data;
- uint size;
- } gs_string;
- typedef struct gs_const_string_s {
- const byte *data;
- uint size;
- } gs_const_string;
-
- /*
- * Define types for Cartesian points.
- */
- typedef struct gs_point_s {
- double x, y;
- } gs_point;
- typedef struct gs_int_point_s {
- int x, y;
- } gs_int_point;
-
- /*
- * Define a scale for oversampling. Clients don't actually use this,
- * but this seemed like the handiest place for it.
- */
- typedef struct gs_log2_scale_point_s {
- int x, y;
- } gs_log2_scale_point;
-
- /*
- * Define types for rectangles in the Cartesian plane.
- * Note that rectangles are half-open, i.e.: their width is
- * q.x-p.x and their height is q.y-p.y; they include the points
- * (x,y) such that p.x<=x<q.x and p.y<=y<q.y.
- */
- typedef struct gs_rect_s {
- gs_point p, q; /* origin point, corner point */
- } gs_rect;
- typedef struct gs_int_rect_s {
- gs_int_point p, q;
- } gs_int_rect;
-
- #endif /* gstypes_INCLUDED */
-